home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / libsrc / c / bios / biosprin.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-04  |  270 b   |  13 lines

  1. /* biosprin.c written pjbk as replacement for TURBOC version */
  2. #include <dos.h>
  3.  
  4. int biosprint(int cmd, int byte, int port)
  5. {
  6.   union REGS regs;
  7.   regs.h.ah = cmd;
  8.   regs.h.al = byte;
  9.   regs.x.dx = port;
  10.   int86 ( 0x17, ®s, ®s);
  11.   return regs.h.ah;
  12. }
  13.